Overload | Description |
---|---|
Sort() | Sorts the entire list by using a default comparer and the quick sort algorithm. |
Sort(IComparer<T>) | Sorts the entire list by using the specified comparer and the quick sort algorithm. |
Sort(INGreaterThanComparer<T>) | Sorts the entire list by using the specified comparer and the quick sort algorithm. |
Sort(Int32,Int32,IComparer<T>) | Sorts only a portion of the list using the specified comparer and the quick sort algorithm. |